.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: flex-start; /* Modal oben ausrichten */
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s;
}

.modal-sheet {
    background: #fff3e0;
    width: 90%;
    max-width: 400px;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 0 4px 24px rgba(255,87,34,0.25), 0 1.5px 8px rgba(0,0,0,0.10);
    padding: 24px 16px 16px 16px;
    margin-top: 40px;
    position: relative;
    border-top: 6px solid #ff9800;
    border-bottom: 6px solid #ff9800;
    transform: translateY(-100%);
    animation: slideDown 0.4s cubic-bezier(.25,.8,.25,1) forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.alarm-message-header {
    min-height: 60px;
    text-align: center;
    font-size: 1.5em;
    color: #b71c1c;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alarm-message-time {
    min-height: 20px;
    text-align: right;
    font-size: .8em;
    margin-bottom: 1px;
    color: #b71c1c;
    font-weight: 150;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alarm-message {
    min-height: 60px;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #b71c1c;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fire-icon {
    min-heigt: 60px;
    font-size: 1.5em;
    text-align: center;
    color: #ff5722;
    filter: drop-shadow(0 0 6px #ff9800);
    margin-bottom: 10px;
}

.modal-controls {
    display: flex;
    justify-content: center;
}

.ok-btn {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
    transition: background 0.2s;
}

    .ok-btn:hover {
        background: #b71c1c;
    }

.swipe-indicator {
    text-align: center;
    font-size: 0.9em;
    color: #d84315;
    margin-bottom: 8px;
}

.swipe-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.swipe-arrow {
    pointer-events: auto;
    background: rgba(255,87,34,0.08);
    border: none;
    font-size: 1.5em;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    color: #d84315;
    box-shadow: 0 1px 4px rgba(255,87,34,0.10);
}

    .swipe-arrow:active {
        background: #ffccbc;
    }
